create-script

用途

create-script命令会创建一个可在终端窗口用grails命令运行的Grails脚本命令。

举例

命令格式:

grails create-script execute-report

下面是一个叫scripts/ExecuteReport.groovy脚本命令的内容

target('default': "The description of the script goes here!") {
    doStuff()
}
target(doStuff: "The implementation task") {
   // logic here   
}

被创建的脚本命令可按下面发方式运行:

grails execute-report

描述

该命令会把小写的连字符分隔的脚本名按驼峰式大小写(camel case)转换成有效的Groovy类名,如输入的create-controller会被转换成scripts/CreateController.groovy的脚本。

生成的脚本是一个Gant脚本,可以使用其他基于Grails内核的Gant命令。更多的信息可参考用户手册的Command Line Scripting章节。

用法:

grails create-script [name]

触发的事件: